Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

util/uut/cmd.c: Use PRIu32 as conversion specifier for uint32_t #30

Open
wants to merge 1 commit into
base: fwk-hx20-hx30-4410
Choose a base branch
from

Conversation

szsam
Copy link

@szsam szsam commented May 22, 2023

If using '%lu', the argument should be of type 'unsigned long', but the actual argument resp_num is of type 'uint32_t'. Calling a printf-like function with the wrong type of arguments causes unpredictable behavior.

Also, use PRIX8 to print uint8_t.

If using '%lu', the argument should be of type 'unsigned long',
but the actual argument resp_num is of type 'uint32_t'.
Calling a printf-like function with the wrong type of arguments causes
unpredictable behavior.

Also, use PRIX8 to print uint8_t.

Signed-off-by: Mingjie Shen <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant